home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Hyper / Q-R / RPN Calculator.cpt / RPN Calculator / card_6278.txt < prev    next >
Text File  |  1988-09-16  |  741b  |  33 lines

  1. -- card: 6278 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 4000
  4. -- background id: 2499
  5. -- name: Using RPN
  6. ----- HyperTalk script -----
  7. on openCard
  8.   put "Using RPN" into field "Title"
  9. end openCard
  10.  
  11.  
  12.  
  13. -- part contents for background part 1
  14. ----- text -----
  15. For those of you not familiar with RPN, the general sequence is:
  16.  
  17.      number  number  operation   ( 5  6  + )
  18.  
  19. Here are some examples (statement of problem followed by keystroke sequence).
  20.  
  21. Add 3 and 5 (answer in x):
  22.  [ 3 ] [ E ] [ 5 ] [ + ]
  23.  
  24. Divide 5 by 3 (answer in x):
  25. [ 5 ] [ E ] [ 3 ] [ √∑ ]
  26.  
  27. Add 1 to 2 to 3 (answer in x):
  28. [ 1 ] [ E ] [ 2 ] [ + ] [ 3 ] [ + ]     or    [ 1 ] [ E ] [ 2 ] [ E ] [ 3 ] [ + ] [ + ]
  29.  
  30.  
  31. -- part contents for background part 6
  32. ----- text -----
  33. Using RPN